home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !tex / TeXsource / commontex / h / char < prev    next >
Encoding:
Text File  |  1988-04-08  |  539 b   |  29 lines

  1. /*
  2.  *    Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
  3.  *    Copying of this file is granted according to the provisions 
  4.  *    specified in the file COPYING which must accompany this file.
  5.  */
  6.  
  7.  
  8. /*
  9.  *        char.h
  10.  */
  11.  
  12. global    ascii    xord[];
  13.  
  14. #define    FIRST_ASCII_CODE        0
  15. #define    LAST_ASCII_CODE            127
  16.  
  17. global     char    xchr[];
  18.  
  19. #define    FIRST_TEXT_CHAR            0
  20. #define    LAST_TEXT_CHAR            127
  21.  
  22. #define    TAB                        011
  23. #define FORM_FEED                014
  24. #define    CARRIAGE_RETURN            015
  25. #define    NULL_CODE                000
  26. #define    INVALID_CODE            0177
  27.  
  28. int    init_char();
  29.